home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2017 October / PCgo 10-2017 CD-ROM Germany.iso / nw.pak / Unnamed File 000200.txt < prev    next >
Encoding:
Text File  |  2015-07-29  |  842 b   |  38 lines

  1.  
  2.     Polymer('paper-button',{
  3.  
  4.       publish: {
  5.  
  6.         /**
  7.          * If true, the button will be styled with a shadow.
  8.          *
  9.          * @attribute raised
  10.          * @type boolean
  11.          * @default false
  12.          */
  13.         raised: false,
  14.  
  15.         /**
  16.          * By default the ripple emanates from where the user touched the button.
  17.          * Set this to true to always center the ripple.
  18.          *
  19.          * @attribute recenteringTouch
  20.          * @type boolean
  21.          * @default false
  22.          */
  23.         recenteringTouch: false,
  24.  
  25.         /**
  26.          * By default the ripple expands to fill the button. Set this to true to
  27.          * constrain the ripple to a circle within the button.
  28.          *
  29.          * @attribute fill
  30.          * @type boolean
  31.          * @default true
  32.          */
  33.         fill: true
  34.  
  35.       }
  36.  
  37.     });
  38.